Represents a view having a single element calculated by aggregating a source view.

Namespace:  C1.LiveLinq.LiveViews
Assembly:  C1.LiveLinq (in C1.LiveLinq.dll)

Syntax

C#
public class AggregationView<TSource, TResult> : View<TResult>, 
	IAggregationView, INotifyPropertyChanged
Visual Basic
Public Class AggregationView(Of TSource, TResult) _
	Inherits View(Of TResult) _
	Implements IAggregationView, INotifyPropertyChanged

Type Parameters

TSource
The type of the elements of the source view.
TResult
The type of the single element of the aggregation view.

Inheritance Hierarchy

System..::..Object
  C1.LiveLinq.LiveViews..::..View
    C1.LiveLinq.LiveViews..::..View<(Of <(<'TResult>)>)>
      C1.LiveLinq.LiveViews..::..AggregationView<(Of <(<'TSource, TResult>)>)>

See Also